home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-408.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  73 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14698);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0700");
  13.  
  14.  name["english"] = "RHSA-2004-408: mod_ssl";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   An updated mod_ssl package for Apache that fixes a format string
  21.   vulnerability is now available.
  22.  
  23.   The mod_ssl module provides strong cryptography for the Apache Web
  24.   server via the Secure Sockets Layer (SSL) and Transport Layer Security
  25.   (TLS) protocols.
  26.  
  27.   A format string issue was discovered in mod_ssl for Apache 1.3 which can be
  28.   triggered if mod_ssl is configured to allow a client to proxy to remote SSL
  29.   sites. In order to exploit this issue, a user who is authorized to use
  30.   Apache as a proxy would have to attempt to connect to a carefully crafted
  31.   hostname via SSL. The Common Vulnerabilities and Exposures project
  32.   (cve.mitre.org) has assigned the name CAN-2004-0700 to this issue.
  33.  
  34.   Users of mod_ssl should upgrade to this updated package, which contains a
  35.   backported patch to correct this issue.
  36.  
  37.  
  38.  
  39.  
  40. Solution : http://rhn.redhat.com/errata/RHSA-2004-408.html
  41. Risk factor : High';
  42.  
  43.  script_description(english:desc["english"]);
  44.  
  45.  summary["english"] = "Check for the version of the mod_ssl packages";
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  51.  family["english"] = "Red Hat Local Security Checks";
  52.  script_family(english:family["english"]);
  53.  
  54.  script_dependencies("ssh_get_info.nasl");
  55.  
  56.  script_require_keys("Host/RedHat/rpm-list");
  57.  exit(0);
  58. }
  59.  
  60. include("rpm.inc");
  61. if ( rpm_check( reference:"mod_ssl-2.8.12-6", release:"RHEL2.1") )
  62. {
  63.  security_hole(0);
  64.  exit(0);
  65. }
  66.  
  67. if ( rpm_exists(rpm:"mod_ssl-", release:"RHEL2.1") )
  68. {
  69.  set_kb_item(name:"CAN-2004-0700", value:TRUE);
  70. }
  71.  
  72. set_kb_item(name:"RHSA-2004-408", value:TRUE);
  73.